Footer.render   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 4
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
1
import React from 'react';
2
3
class Footer extends React.Component {
4
    render() {
5
        return <div className="footer">
6
            <p> ©2019 Johan Ledel</p>
7
        </div>
8
    }
9
}
10
11
export default Footer;